home *** CD-ROM | disk | FTP | other *** search
- unit Global;
- {********************************************************************}
- {** Unit : Global **}
- {** **}
- {** Description : Global variables and constants use in the shell **}
- {** extension. Inparticular it contains the refernce count for the**}
- {** DLL and it's CLSID definition. **}
- {** **}
- {** Version History : **}
- {** **}
- {** A0.01 Initial version started 27/10/96 **}
- {** **}
- {** Copyright ⌐1996 David J. Fiddes **}
- {********************************************************************}
- interface
- uses
- OLE2;
-
- {** The Class ID(CLSID) for the Shell Extension **}
- const
- CLSID_PropSheet : TCLSID =
- (D1:$AA6A37C0;D2:$04F9;D3:$11D0;D4:($8A,$FB,$00,$C0,$DF,$44,$27,$3E));
-
- StrCLSID_PropSheet = '{AA6A37C0-04F9-11D0-8AFB-00C0DF44273E}';
- StrProgID = 'MWWProp.1';
- StrDescription = 'Warrens Music Works2 Properties Sheet';
-
- {** The reference count for the DLL - when this is zero we unload the DLL **}
- RefThisDLL : longint = 0;
-
-
- implementation
-
- end.
-